/*
Theme Name: Mein Child Theme
Theme URI: http://example.com/mein-child-theme
Description: Ein Child Theme für das Beispiel-Theme
Author: Markus Neurohr
Author URI: https://markus-neurohr.de
Template: oceanwp
Version: 1.0
*/
@font-face {
  font-family: 'Montserrat';
  src: url('assests/fonts/montserrat/Montserrat-Regular.woff2') format('woff2'),
       url('assests/fonts/montserrat/Montserrat-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('assests/fonts/montserrat/Montserrat-Bold.woff2') format('woff2'),
       url('assests/fonts/montserrat/Montserrat-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

p{
    margin: 0 !important;
}

body{
    font-family: "Montserrat", sans-serif;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #ffffff;
    width: 100%;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); 
    width: 100%;
}

.top-bar{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.top-bar-metanav{
    display: none;
}

.top-bar-metanav-mobile{
    position: absolute;
    top: 0;
    right: 0;
    background-color: #B5D7CF;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    display: none;
    z-index: 1000;
    width: 100%;
}

.top-bar-metanav-mobile a {
  text-decoration: none;
  color: #000000;
}

.top-bar-metanav-mobile p{
    font-size: 20px;
}

 .top-bar-metanav-mobile.nav-open {
    display: flex;
 }
 
.close-nav {
  background: none;
  border: none;
  font-size: 28px;
  font-weight: bold;
  align-self: flex-start;
  cursor: pointer;
  margin-bottom: 10px;
  color: #333;
}

.top-bar-logo img{
    width: 500px;  
    height: auto;
}

.top-bar-hamburger {
    display: block;
}

.top-bar-hamburger .bar{
    display: block;
    width: 30px;
    height: 4px;
    margin: 5px 0;
    background-color: #555555;
}

.site-header{
    margin-top: 2vh;
}

.site-header{
    display: none;
}

.motto{
    display: none;
}

.vorteile-section {
    background-color: #ffffff;
    width: 100%;
	padding: 2rem 1rem;
}

.vorteile-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #111827;
}

.vorteile-liste {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vorteile-liste li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 14px;      
}

.vorteile-liste i {
    color: #B5D7CF; 
	margin-right: 0.75rem;
    margin-top: 0.2rem;
    font-size: 1.5rem;
    flex-shrink: 0;
}
	
.button-container {
    display: flex;
	flex-direction: column;
    gap: 40px; 
}

.circle-button {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: none;
    background-color: #008e3d;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    text-decoration: none;     /* wichtig: Link-Stil entfernen */
}

.circle-button:hover {
    background-color: #ffffff;
    transform: scale(1.05);
    color:#008e3d;
    border: 1px solid #b5d7cf;
}

.circle-button:active {
    transform: scale(0.95);
}


.kontakt-form {
    display: flex;
    flex-direction: column;
}

.kontakt-form label {
    margin-bottom: 0.3vh; /* enger Abstand zum Input */
    font-weight: 500;
}

.kontakt-form input[type="text"],
.kontakt-form input[type="email"],
.kontakt-form input[type="submit"],
.kontakt-form textarea,
.kontakt-form select {
    padding: 8px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 1.5rem;
    box-sizing: border-box;
}

.kontakt-form input[type="text"],
.kontakt-form input[type="email"],
.kontakt-form textarea,
.kontakt-form select {
    margin-bottom: 2vh; /* Abstand zwischen den einzelnen Feldern */
}

.kontakt-form input[type="submit"] {
    cursor: pointer;
    margin-top: 1vh;
}


	
.kontakt-form input[type="submit"]{
	background-color:#008e3d;
	margin-top: 24px;
}

#cookie-banner{
    position: fixed;
    top: 50%;
    left: 0;
    right:0;
    background: #008e3d;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    width: 90%;
    border: 2px solid #ffffff;
    margin: auto;
    padding: 30px;
    font-weight: 700;
	color: #fff;
}

#consent-buttons{
    display: flex;
    gap: 30px;
	color: #000;
}

#accept{
    background-color: #ffffff;
    width: 150px;
}

#decline{
    background-color: #ffffff;
    width: 150px;
}


/*---------------------------------------------------------------------1280px.............................................................*/

@media (min-width: 1280px){

header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #ffffff;
    width: 100%;
    
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); 
    width: 100%;
}

.top-bar{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.top-bar-metanav{
    display: none;
}

.top-bar-metanav-mobile{
    position: absolute;
    top: 0;
    right: 0;
    background-color: #B5D7CF;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    display: none;
    z-index: 1000;
    width: 50%;
}

.top-bar-metanav-mobile a {
  text-decoration: none;
  color: #000000;
 }

.top-bar-metanav-mobile p{
    font-size: 20px;
}

 .top-bar-metanav-mobile.nav-open {
    display: flex;
 }
 
.close-nav {
  background: none;
  border: none;
  font-size: 28px;
  font-weight: bold;
  align-self: flex-start;
  cursor: pointer;
  margin-bottom: 10px;
  color: #333;
}

.top-bar-logo img{
    width: 500px;  
    height: auto;
}

.top-bar-hamburger{
    display: block;
}

.top-bar-hamburger .bar{
    display: block;
    width: 30px;
    height: 4px;
    margin: 5px 0;
    background-color: #555555;
}

.site-header{
    margin-top: 200px;
    display: block;
}

.site-header-overlay{
    display: none;
}
	
.vorteile-section {
    background-color: #008e3d;
    width: 100%;
	padding: 2rem 1rem;
	color:#ffffff;
}

.vorteile-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #ffffff;
}

.vorteile-liste {
    list-style: none;
    padding: 0;
    margin: 0;
	
}

.vorteile-liste li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1.8rem; 
	text-align:center;
}

.vorteile-liste i {
    color: #ffffff; 
	margin-right: 0.75rem;
    margin-top: 0.2rem;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.button-container {
    display: flex;
    flex-direction: row;
	gap: 40px; 
}

.circle-button {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: none;
    background-color: #008e3d;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 }

.circle-button:hover {
    background-color: #ffffff;
    transform: scale(1.05);
    color:#B5D7CF;
    border: 1px solid #b5d7cf;
}

.circle-button:active {
    transform: scale(0.95);
}

/*------------------------------------------------------------------------1440px---------------------------------------------------*/

@media (min-width: 1440px){

header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #ffffff;
    width: 100%;
    
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); 
    width: 100%;
}

.top-bar{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
	margin-right: 32px;
}

.top-bar-metanav{
    display: flex;
    flex-direction: row;
    gap: 30px;
}
	
.top-bar-metanav a{
	color: #008e3d;
	font-size: 1.2em;
	font-weight: bold;
}

.top-bar-metanav a:hover{
    color: #035D29;
    text-decoration: underline;
}

.top-bar-metanav-mobile{
    display: none;
}

.top-bar-hamburger{
    display: none;
}
 
.top-bar-logo img{
    width: 500px;  
    height: auto;
}

.site-header{
    position: relative;
    margin-top: 100px;
    
}

.site-header-overlay{
    position: absolute;
    top:0;
    right:0;
    width: 100%;
    height: 100%;
    display: block;
   
	
}

.site-header-overlay-nav{
    display: flex;
	flex-direction: column;
	gap: 5%;
    width: 100%;
    height: 100%;
    justify-content: center;
    margin-left: 8vw;
   
}




.site-header-overlay-nav a{
    border: 2px solid #ffffff;
    border-radius: 10px;
    padding: 3px;
    background-color: #ffffff;
    width: 15%;
    color: #035D29;
    font-weight: bold;
     position: relative;
}

.site-header-overlay-nav a:after{
    content: ">";
    position: absolute;
    transform: translateY(-50%);
    right: 12px;
    top: 50%;
    color: #035D29;
}



.site-header img{
    width: 100%;
    
}

.site-header-overlay-nav a:hover{
    border: 2px solid #fffffff;
    background-color: #035D29;
    border-radius: 10px;
    padding: 3px;
    width: 15%;
    font-weight: bold;
    color:#ffffff;
}

.site-header-overlay-nav a:hover::after{
    content: ">";
    position: absolute;
    transform: translateY(-50%);
    right: 12px;
    top: 50%;
    color: #ffffff;
}


	
.motto{
	display:block;
	width:100%;
	background-color: #008E3D;
	text-align: center;
	font-size: 2.5rem;
	font-weight: bold;
	color:#ffffff;
	border-top: 1px solid #fff;
}
	

.vorteile-section {
    background-color: #008e3d;
    width: 100%;
	padding: 2rem 1rem;
	color:#ffffff;	
}

.vorteile-section h2 {
    font-size: 32px;
    margin-bottom: 2rem;
    text-align: center;
    color: #ffffff;
}

.vorteile-liste {
    list-style: none;
    padding: 0;
    margin: 0;
	
}

.vorteile-liste li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1.8rem; 
	text-align:center;
}

.vorteile-liste i {
    color: #ffffff; 
	margin-right: 0.75rem;
    margin-top: 0.2rem;
    font-size: 1.8rem;
    flex-shrink: 0;
}


.button-container {
    display: flex;
    flex-direction: row;
	gap: 40px; 
}

.circle-button {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: none;
    background-color: #008e3d;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    text-decoration: none;     /* wichtig: Link-Stil entfernen */
}

.circle-button:hover {
    background-color: #ffffff;
    transform: scale(1.05);
    color: #008e3d;
    border: 1px solid #008e3d;
}

.circle-button:active {
    transform: scale(0.95);
}


.kontakt-form {
    display: flex;
    flex-direction: column;
}

.kontakt-form label {
    margin-bottom: 0.3vh; /* enger Abstand zum Input */
    font-weight: 500;
}

.kontakt-form input[type="text"],
.kontakt-form input[type="email"],
.kontakt-form input[type="submit"],
.kontakt-form textarea,
.kontakt-form select {
    padding: 8px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 1.5rem;
    box-sizing: border-box;
}

.kontakt-form input[type="text"],
.kontakt-form input[type="email"],
.kontakt-form textarea,
.kontakt-form select {
    margin-bottom: 2vh; /* Abstand zwischen den einzelnen Feldern */
}

.kontakt-form input[type="submit"] {
    cursor: pointer;
    margin-top: 1vh;
}


	
.kontakt-form input[type="submit"]{
	background-color:#008e3d;
	margin-top: 24px;
}
	
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  color: black;
  top: 100%;
  left: 0;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 10;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: black;
  
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
	